home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
OWL
/
BLRPLT
/
NOTIF.DAT
< prev
next >
Wrap
Text File
|
1994-03-15
|
898b
|
44 lines
*BUTTON
begin
MessageBeep(0);
end;
*LISTBOX
{wParam, listbox ID. lParamLo, listbox window handle.
lParamHi, lbn_DblClk, lbn_SetFocus, lbn_SelChange, or other lbn_ message}
begin
case Msg.LParamHi of
lbn_DblClk : MessageBeep(0);
lbn_SetFocus : ;
lbn_SelChange : ;
end;
end;
*COMBOBOX
{wParam, combobox ID. lParamLo, combobox window handle.
lParamHi, cbn_DblClk, cbn_SetFocus, cbn_SelChange, or other cbn_ message}
begin
case Msg.LParamHi of
cbn_DblClk : MessageBeep(0);
cbn_SetFocus : ;
cbn_SelChange : ;
end;
end;
*EDIT
{wParam, edit ID. lParamLo, edit window handle.
lParamHi, en_Change, en_Update, en_SetFocus, or other en_ message}
begin
end;
*Ok
begin
@XX02.Ok(Msg);
end;
*Cancel
begin
@XX02.Cancel(Msg);
end;
*GROUPBOX
{wParam, GroupBox ID. lParamLo, GroupBox window handle.
lParamHi, CheckBox or RadioButton ID }
begin
end;